crypto/cipher.ofb.out (field)
14 uses
crypto/cipher (current package)
ofb.go#L17: out []byte
ofb.go#L36: out: make([]byte, 0, bufSize),
ofb.go#L46: remain := len(x.out) - x.outUsed
ofb.go#L50: copy(x.out, x.out[x.outUsed:])
ofb.go#L51: x.out = x.out[:cap(x.out)]
ofb.go#L52: for remain < len(x.out)-bs {
ofb.go#L54: copy(x.out[remain:], x.cipher)
ofb.go#L57: x.out = x.out[:remain]
ofb.go#L69: if x.outUsed >= len(x.out)-x.b.BlockSize() {
ofb.go#L72: n := subtle.XORBytes(dst, src, x.out[x.outUsed:])
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |